home *** CD-ROM | disk | FTP | other *** search
/ PC Users 1999 April / Cd Pc Users extra 19 abril 1999.iso / Prog / Inst / Scroll / frmMain.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-01-14  |  921 b   |  32 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMain 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Main Form"
  6.    ClientHeight    =   4500
  7.    ClientLeft      =   45
  8.    ClientTop       =   615
  9.    ClientWidth     =   5760
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    NegotiateMenus  =   0   'False
  14.    ScaleHeight     =   4500
  15.    ScaleWidth      =   5760
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.Menu mnuHelp 
  18.       Caption         =   "&Help"
  19.       Begin VB.Menu mnuHelpAbout 
  20.          Caption         =   "About..."
  21.       End
  22.    End
  23. Attribute VB_Name = "frmMain"
  24. Attribute VB_GlobalNameSpace = False
  25. Attribute VB_Creatable = False
  26. Attribute VB_PredeclaredId = True
  27. Attribute VB_Exposed = False
  28. Option Explicit
  29. Private Sub mnuHelpAbout_Click()
  30. frmAbout.Show vbModal, Me
  31. End Sub
  32.